home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / exec / funpopre.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  357 b   |  22 lines

  1. /*
  2. \funcref{fun\_pop\_reg}{void fun\_pop\_reg ()}
  3.     {}
  4.     {}
  5.     {discard(), pop()}
  6.     {fun\_push\_reg()}
  7.     {funpopre.c}
  8.     {
  9.  
  10.         The last pushed value is popped into the return register. This action
  11.         is usually taken when a function is about to return a value.
  12.  
  13.     }
  14. */
  15.  
  16. #include "icm-exec.h"
  17.  
  18. void fun_pop_reg ()
  19. {
  20.     reg = pop ();
  21. }
  22.